Stefan Dirsch
4cfe93afca
Split xdm out of xorg-x11; no change to the content OBS-URL: https://build.opensuse.org/request/show/113498 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xdm?expand=0&rev=1
34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From 50c96170ad42321310c346cf412f9ae7e80ec2a7 Mon Sep 17 00:00:00 2001
|
|
From: Gaetan Nadon <memsize@videotron.ca>
|
|
Date: Sun, 29 Aug 2010 19:56:59 -0400
|
|
Subject: [PATCH] config: AC_LIBTOOL_DLOPEN is required for dynamic linking
|
|
|
|
It adds the following tests in the configuration :
|
|
checking for shl_load... no
|
|
checking for shl_load in -ldld... no
|
|
checking for dlopen... no
|
|
checking for dlopen in -ldl... yes
|
|
checking whether a program can dlopen itself... yes
|
|
checking whether a statically linked program can dlopen itself... no
|
|
|
|
This has not resulted in any compiler/linker flags change on
|
|
a GNU/Linux platform.
|
|
|
|
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
|
|
---
|
|
configure.ac | 3 ++-
|
|
1 files changed, 2 insertions(+), 1 deletions(-)
|
|
|
|
--- xdm-1.1.10/configure.ac.orig 2011-08-25 12:46:19.795331000 +0200
|
|
+++ xdm-1.1.10/configure.ac 2011-08-25 12:46:52.562458000 +0200
|
|
@@ -40,7 +40,8 @@ AC_PROG_CC
|
|
AM_PROG_CC_C_O
|
|
AC_C_INLINE
|
|
AC_LIBTOOL_WIN32_DLL
|
|
-AM_PROG_LIBTOOL
|
|
+AC_LIBTOOL_DLOPEN
|
|
+AC_PROG_LIBTOOL
|
|
AC_PROG_INSTALL
|
|
|
|
XORG_PROG_RAWCPP
|