aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-support.m4
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@src.gnome.org>1998-02-13 07:11:26 +0800
committerRaja R Harinath <harinath@src.gnome.org>1998-02-13 07:11:26 +0800
commit01ce31066fcd790c960d7e49ce9661127ce7174a (patch)
treec3270faca71a8b4e2c760e3a6e995ab68cd0f6a3 /macros/gnome-support.m4
parent587bcc94568f411adb8d14a269b9bddf8c1fe3ee (diff)
downloadgsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.tar
gsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.tar.gz
gsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.tar.bz2
gsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.tar.lz
gsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.tar.xz
gsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.tar.zst
gsoc2013-evolution-01ce31066fcd790c960d7e49ce9661127ce7174a.zip
New file. Defines GNOME_SUPPORT_CHECKS for libsupport.a support.
* gnome-support.m4: New file. Defines GNOME_SUPPORT_CHECKS for libsupport.a support. svn path=/trunk/; revision=19
Diffstat (limited to 'macros/gnome-support.m4')
-rw-r--r--macros/gnome-support.m47
1 files changed, 7 insertions, 0 deletions
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)
+])