Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 248573 | Differences between
and this patch

Collapse All | Expand All

(-)lintar-0.6.2.orig/src/Makefile.am (-5 / +2 lines)
Lines 6-16 Link Here
6
						prefs_dialog.c prefs_dialog.h prog.c prog.h \
6
						prefs_dialog.c prefs_dialog.h prog.c prog.h \
7
						prog_single.c prog_single.h prog_tar.c prog_tar.h prog_zip.c prog_zip.h
7
						prog_single.c prog_single.h prog_tar.c prog_tar.h prog_zip.c prog_zip.h
8
8
9
CFLAGS   += -Wall -g
9
lintar_LDADD  = @DEPS_LIBS@
10
10
lintar_CFLAGS = @DEPS_CFLAGS@
11
LDFLAGS  += `pkg-config --libs gtk+-2.0 gnome-vfs-2.0`
12
13
INCLUDES += `pkg-config --cflags gtk+-2.0 gnome-vfs-2.0`
14
11
15
CLEANFILES      = *~
12
CLEANFILES      = *~
16
DISTCLEANFILES  = .deps/*.P
13
DISTCLEANFILES  = .deps/*.P
(-)lintar-0.6.2.orig/configure.ac (-1 / +3 lines)
Lines 1-6 Link Here
1
# Process this file with autoconf to produce a configure script.
1
# Process this file with autoconf to produce a configure script.
2
AC_INIT(lintar, 0.6.2, jrh@gps.tsc.upc.es)
2
AC_INIT(lintar, 0.6.2, jrh@gps.tsc.upc.es)
3
AM_INIT_AUTOMAKE(lintar, 0.6.2)
3
AM_INIT_AUTOMAKE(lintar, 0.6.2)
4
AC_USE_SYSTEM_EXTENSIONS
4
5
5
AC_CONFIG_SRCDIR([src/lintar_global.c])
6
AC_CONFIG_SRCDIR([src/lintar_global.c])
6
7
Lines 9-20 Link Here
9
10
10
# Checks for programs.
11
# Checks for programs.
11
AC_PROG_CC
12
AC_PROG_CC
13
AM_PROG_CC_C_O
12
14
13
AC_PATH_PROG(USE_PKG_CONFIG, pkg-config,,)
15
AC_PATH_PROG(USE_PKG_CONFIG, pkg-config,,)
14
if test -z $USE_PKG_CONFIG; then
16
if test -z $USE_PKG_CONFIG; then
15
   AC_MSG_ERROR([[Need pkg-config to compile lintar.]])
17
   AC_MSG_ERROR([[Need pkg-config to compile lintar.]])
16
fi
18
fi
17
19
PKG_CHECK_MODULES(DEPS, gtk+-2.0 gnome-vfs-2.0 )
18
20
19
AC_PATH_PROG(LINTAR_PROG_CP, cp,,)
21
AC_PATH_PROG(LINTAR_PROG_CP, cp,,)
20
if test -z $LINTAR_PROG_CP; then
22
if test -z $LINTAR_PROG_CP; then

Return to bug 248573