Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
wayland
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
94
Issues
94
List
Boards
Labels
Service Desk
Milestones
Merge Requests
24
Merge Requests
24
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wayland
wayland
Commits
5b7e43ac
Commit
5b7e43ac
authored
Nov 06, 2010
by
Javier Jardón
Committed by
Kristian Høgsberg
Nov 06, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update autotools configuration
Use new libtool syntax and cleaning the code a bit
parent
0bfb126e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
16 deletions
+26
-16
Makefile.am
Makefile.am
+1
-1
autogen.sh
autogen.sh
+7
-10
configure.ac
configure.ac
+18
-5
No files found.
Makefile.am
View file @
5b7e43ac
SUBDIRS
=
wayland compositor clients data
ACLOCAL_AMFLAGS
=
-I
m4
ACLOCAL_AMFLAGS
=
-I
m4
${ACLOCAL_FLAGS}
autogen.sh
View file @
5b7e43ac
#! /bin/sh
srcdir
=
`
dirname
$0
`
test
-z
"
$srcdir
"
&&
srcdir
=
.
ORIGDIR
=
`
pwd
`
cd
$srcdir
autoreconf
--force
-v
--install
||
exit
1
cd
$ORIGDIR
||
exit
$?
$srcdir
/configure
"
$@
"
test
-n
"
$srcdir
"
||
srcdir
=
`
dirname
"
$0
"
`
test
-n
"
$srcdir
"
||
srcdir
=
.
(
cd
"
$srcdir
"
&&
autoreconf
--force
-v
--install
)
||
exit
test
-n
"
$NOCONFIGURE
"
||
"
$srcdir
/configure"
"
$@
"
configure.ac
View file @
5b7e43ac
AC_INIT(wayland, 0.1)
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AC_PROG_CC
AC_PROG_LIBTOOL
AC_CONFIG_MACRO_DIR([m4])
AC_PREREQ([2.64])
AC_INIT([wayland],
[0.1],
[https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
[wayland],
[http://wayland.freedesktop.org/])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2])
AM_SILENT_RULES([yes])
# Check for programs
AC_PROG_CC
# Initialize libtool
LT_PREREQ([2.2])
LT_INIT
PKG_PROG_PKG_CONFIG()
PKG_CHECK_MODULES(FFI, [libffi])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment