1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-23 22:52:34 +01:00

configure: New architectures kfreebsd* and Hurd

This commit is contained in:
Rodolfo García Peñas (kix)
2012-01-05 23:21:50 +01:00
committed by Carlos R. Mafra
parent 01907f9983
commit 7013467da4

View File

@@ -80,11 +80,11 @@ dnl Platform-specific Makefile setup
dnl ================================ dnl ================================
case "${host}" in case "${host}" in
*-*-linux*|*-*-cygwin*) *-*-linux*|*-*-cygwin*|*-gnu*)
WM_OSDEP="linux" WM_OSDEP="linux"
CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600" CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600"
;; ;;
*-*-freebsd*) *-*-freebsd*|*-k*bsd-gnu*)
WM_OSDEP="bsd" WM_OSDEP="bsd"
CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD" CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD"
;; ;;