|
From: Martin R. <ru...@us...> - 2009-03-24 18:31:10
|
Update of /cvsroot/foo/foo/elkfoo In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13184 Modified Files: configure.ac Log Message: added macports paths /opt/local/xxx to default search path on darwin Index: configure.ac =================================================================== RCS file: /cvsroot/foo/foo/elkfoo/configure.ac,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** configure.ac 14 Dec 2007 19:41:44 -0000 1.18 --- configure.ac 24 Mar 2009 18:31:01 -0000 1.19 *************** *** 50,61 **** # check for foundation library to use # os dependent check case "${target_os}" in *darwin*) AC_DEFINE(SYS_DARWIN, 1, Define if the system is Darwin) ! enable_gnustep=no; ;; *linux*) AC_DEFINE(SYS_LINUX, 1, Define if the system is Linux) ! enable_gnustep=yes; ;; *) --- 50,65 ---- # check for foundation library to use # os dependent check + # adjust typical os-specific paths case "${target_os}" in *darwin*) AC_DEFINE(SYS_DARWIN, 1, Define if the system is Darwin) ! enable_gnustep=no ! # for macports ! CPPFLAGS="$CPPFLAGS -I/opt/local/include" ! LDFLAGS="$LDFLAGS -L/opt/local/lib" ;; *linux*) AC_DEFINE(SYS_LINUX, 1, Define if the system is Linux) ! enable_gnustep=yes ;; *) |