12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #! /bin/sh
- # Copyright (C) 2012-2017 Free Software Foundation, Inc.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2, or (at your option)
- # any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- # Dummy demo package using Objective C and doing distcheck.
- # See also sister test 'objcxx-minidemo.sh'.
- required=native
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_PROG_OBJC
- AC_CONFIG_HEADERS([config.h])
- AC_OUTPUT
- END
- cat > Makefile.am << 'END'
- AM_DEFAULT_SOURCE_EXT = .m
- bin_PROGRAMS = ok
- noinst_PROGRAMS = ko
- TESTS = $(bin_PROGRAMS) $(XFAIL_TESTS)
- XFAIL_TESTS = $(noinst_PROGRAMS)
- END
- cat > ok.m << 'END'
- /* The use of #import makes this valid Object C but invalid C. */
- #import <stdio.h>
- #import <config.h>
- int main (void)
- {
- printf ("Success (%s)\n", PACKAGE_STRING);
- return 0;
- }
- END
- cat > ko.m << 'END'
- /* The use of #import makes this valid Object C but invalid C. */
- #import <stdio.h>
- int main (void)
- {
- printf("Failure\n");
- return 1;
- }
- END
- if $ACLOCAL; then
- : We have a modern enough autoconf, go ahead.
- elif test $? -eq 63; then
- skip_ "Object C++ support requires Autoconf 2.65 or later"
- else
- exit 1 # Some other aclocal failure.
- fi
- $ACLOCAL
- $AUTOCONF
- $AUTOHEADER
- $AUTOMAKE --add-missing
- ./configure
- $MAKE
- $MAKE check
- $MAKE distcheck
- :
|