diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-05-31 08:18:04 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-05-31 08:18:04 +0200 |
commit | abc33d1b000ed7fbebbff9300864420fd6fb8fef (patch) | |
tree | 2e8c7d8b55c97b05f72e36679f34fb752f78ae73 /autogen.sh | |
parent | 7e7db3fe70ee4e9b7c64eb63843914f2525b8526 (diff) |
Add (working) Cocoa UI support.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -11,5 +11,15 @@ then exit 1 fi +# Check for support of AC_PROG_OBJCXX macro. If missing emulate it. +mkdir -p actest +cat << EOF > actest/configure.ac +AC_INIT([actest], [1.0.0]) +AC_PROG_OBJCXX +EOF +[ -f acinclude.m4 ] && rm acinclude.m4 +autoreconf -W error actest 2>/dev/null || echo "AC_DEFUN([AC_PROG_OBJCXX],[echo ' - ObjC++ hack - not support by this platform, but not needed either.'])" > acinclude.m4 +rm -Rf actest + # Now run autoreconf ${AUTORECONF:-autoreconf} -fiv --warnings=no-unsupported |