aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/gnome-support.m47
2 files changed, 12 insertions, 0 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index a56b3147c3..d85dbfa7b3 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+1998-02-12 Raja R Harinath <harinath@cs.umn.edu>
+
+ * gnome-support.m4: New file. Defines GNOME_SUPPORT_CHECKS for
+ libsupport.a support.
+
1998-02-10 Raja R Harinath <harinath@cs.umn.edu>
* gnome.m4: New file. Moved AC_CHECK_GNOME from `configure.in' to
diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4
new file mode 100644
index 0000000000..9286f79b45
--- /dev/null
+++ b/macros/gnome-support.m4
@@ -0,0 +1,7 @@
+dnl libsupport stuff
+dnl GNOME_SUPPORT_CHECKS
+AC_DEFUN([GNOME_SUPPORT_CHECKS],[
+ AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.o getopt1.o")
+ AC_REPLACE_FUNCS(strtok_r)
+ AC_SUBST(LIBOBJS)
+])