forked from shaba/openuds
upgrade to use guacamole 0.9.9
This commit is contained in:
parent
0b390e406a
commit
6f46e16be8
@ -7,9 +7,9 @@
|
||||
<groupId>org.openuds.server</groupId>
|
||||
<artifactId>transport</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<version>1.9.0</version>
|
||||
<version>2.0.0</version>
|
||||
<name>Guacamole Transport</name>
|
||||
<url>http://openuds.org/</url>
|
||||
<url>https://github.com/dkmstr/openuds</url>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
@ -62,14 +62,14 @@
|
||||
<dependency>
|
||||
<groupId>org.glyptodon.guacamole</groupId>
|
||||
<artifactId>guacamole-common</artifactId>
|
||||
<version>0.9.7</version>
|
||||
<version>0.9.9</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Guacamole JavaScript library -->
|
||||
<dependency>
|
||||
<groupId>org.glyptodon.guacamole</groupId>
|
||||
<artifactId>guacamole-common-js</artifactId>
|
||||
<version>0.9.8</version>
|
||||
<version>0.9.9</version>
|
||||
<type>zip</type>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
|
@ -1,3 +1,5 @@
|
||||
# Very simple setup file
|
||||
# We suppose that we already have pam develompent files & curl development files installed
|
||||
set(pam_uds_SRCS
|
||||
pam_uds.c
|
||||
http.c
|
||||
@ -13,7 +15,7 @@ set(nss_uds_SRCS
|
||||
)
|
||||
|
||||
add_library(pam_uds SHARED ${pam_uds_SRCS})
|
||||
set_target_properties(pam_uds PROPERTIES
|
||||
set_target_properties(pam_uds PROPERTIES
|
||||
OUTPUT_NAME pam_uds
|
||||
PREFIX ""
|
||||
SUFFIX ".so"
|
||||
@ -23,10 +25,10 @@ target_link_libraries(pam_uds curl pam)
|
||||
|
||||
add_library(nss_uds SHARED ${nss_uds_SRCS})
|
||||
|
||||
set_target_properties(nss_uds PROPERTIES
|
||||
set_target_properties(nss_uds PROPERTIES
|
||||
OUTPUT_NAME nss_uds
|
||||
PREFIX "lib"
|
||||
SUFFIX ".so.2"
|
||||
)
|
||||
# Remember, nss libs needs to have ".so.2" symlink to .so
|
||||
|
||||
target_link_libraries(nss_uds curl pam)
|
||||
target_link_libraries(nss_uds curl)
|
||||
|
Loading…
x
Reference in New Issue
Block a user