Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
some auto-fu
Browse files Browse the repository at this point in the history
Stub just enough so it ./autogen.sh without errors.
  • Loading branch information
StephaneDelcroix committed May 20, 2009
1 parent 9a2998f commit 9e49537
Show file tree
Hide file tree
Showing 9 changed files with 538 additions and 0 deletions.
1 change: 1 addition & 0 deletions AUTHORS
@@ -0,0 +1 @@
Stephane Delcroix <stephane@delcroix.org>
504 changes: 504 additions & 0 deletions COPYING

Large diffs are not rendered by default.

Empty file added ChangeLog
Empty file.
2 changes: 2 additions & 0 deletions Makefile.am
@@ -0,0 +1,2 @@
SUBDIRS = \
class
Empty file added NEWS
Empty file.
Empty file added README
Empty file.
17 changes: 17 additions & 0 deletions autogen.sh
@@ -0,0 +1,17 @@
#!/bin/sh

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PROJECT=exiv2-sharp

autoreconf -v --force --install -I config -I m4

if test x$NOCONFIGURE = x; then
echo Running $srcdir/configure $conf_flags "$@" ...
$srcdir/configure $conf_flags "$@" \
&& echo Now type \`make\' to compile $PROJECT || exit 1
else
echo Skipping configure process.
fi

Empty file added class/Makefile.am
Empty file.
14 changes: 14 additions & 0 deletions configure.ac
@@ -0,0 +1,14 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(gtk-sharp-beans, 2.13.90, stephane@delcroix.org)
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR(class/Builder.cs)

AM_INIT_AUTOMAKE

PKG_CHECK_MODULES(GTKSHARP, gtk-sharp-2.0 >= 2.12)
PKG_CHECK_MODULES(GLIBSHARP, glib-sharp-2.0 >= 2.12)

AC_OUTPUT(
Makefile
class/Makefile
)

0 comments on commit 9e49537

Please sign in to comment.