Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
77771ea8
Commit
77771ea8
authored
Jun 19, 2014
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Status monitor, timeout for receive added
parent
6c0c724d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
39 additions
and
29 deletions
+39
-29
opc/exe/opc_server/src/opc_server.cpp
opc/exe/opc_server/src/opc_server.cpp
+1
-0
src/lib/statussrv/src/statussrv_utl.cpp
src/lib/statussrv/src/statussrv_utl.cpp
+29
-20
src/tools/pwre/src/os_cygwin/pwre_configure.sh
src/tools/pwre/src/os_cygwin/pwre_configure.sh
+2
-2
src/tools/pwre/src/os_freebsd/pwre_configure.sh
src/tools/pwre/src/os_freebsd/pwre_configure.sh
+1
-1
src/tools/pwre/src/os_linux/pwre_configure.sh
src/tools/pwre/src/os_linux/pwre_configure.sh
+2
-2
src/tools/pwre/src/os_macos/pwre_configure.sh
src/tools/pwre/src/os_macos/pwre_configure.sh
+1
-1
src/tools/pwre/src/os_mingw/pwre_configure.sh
src/tools/pwre/src/os_mingw/pwre_configure.sh
+1
-1
src/tools/pwre/src/os_openbsd/pwre_configure.sh
src/tools/pwre/src/os_openbsd/pwre_configure.sh
+1
-1
src/tools/pwre/src/os_templ/pwre_configure.sh
src/tools/pwre/src/os_templ/pwre_configure.sh
+1
-1
No files found.
opc/exe/opc_server/src/opc_server.cpp
View file @
77771ea8
...
@@ -264,6 +264,7 @@ int main()
...
@@ -264,6 +264,7 @@ int main()
errh_SetStatus
(
PWR__SRUN
);
errh_SetStatus
(
PWR__SRUN
);
soap_init
(
&
soap
);
soap_init
(
&
soap
);
soap
.
bind_flags
=
0
;
for
(
int
k
=
0
;
k
<
restarts
+
1
;
k
++
)
{
for
(
int
k
=
0
;
k
<
restarts
+
1
;
k
++
)
{
m
=
soap_bind
(
&
soap
,
NULL
,
opcsrv
->
m_config
->
Port
,
100
);
m
=
soap_bind
(
&
soap
,
NULL
,
opcsrv
->
m_config
->
Port
,
100
);
...
...
src/lib/statussrv/src/statussrv_utl.cpp
View file @
77771ea8
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
#include "statussrv_utl.h"
#include "statussrv_utl.h"
#include "co_time.h"
#include "co_time.h"
#include "co_cdh.h"
#include "co_cdh.h"
#include "co_cnf.h"
#include "co_syi.h"
#include "co_syi.h"
#include "rt_pwr_msg.h"
#include "rt_pwr_msg.h"
...
@@ -12,6 +13,24 @@ static struct soap soap;
...
@@ -12,6 +13,24 @@ static struct soap soap;
static
int
init_done
=
0
;
static
int
init_done
=
0
;
static
int
port
=
18084
;
static
int
port
=
18084
;
static
void
init
()
{
float
timeout
;
char
timeoutstr
[
20
];
if
(
init_done
)
return
;
soap_init
(
&
soap
);
if
(
cnf_get_value
(
"statusMonitorTimeout"
,
timeoutstr
,
sizeof
(
timeoutstr
))
!=
0
&&
sscanf
(
timeoutstr
,
"%f"
,
&
timeout
)
==
1
)
soap
.
recv_timeout
=
-
1000000
*
timeout
;
// Negative value is us, positive is s
else
soap
.
recv_timeout
=
-
200000
;
init_done
=
1
;
}
static
char
*
nname
(
const
char
*
nodename
)
static
char
*
nname
(
const
char
*
nodename
)
{
{
static
char
n
[
80
];
static
char
n
[
80
];
...
@@ -31,10 +50,8 @@ pwr_tStatus statussrv_GetStatus( const char *nodename, statussrv_sGetStatus *res
...
@@ -31,10 +50,8 @@ pwr_tStatus statussrv_GetStatus( const char *nodename, statussrv_sGetStatus *res
pwr_tStatus
sts
=
PWR__SUCCESS
;
pwr_tStatus
sts
=
PWR__SUCCESS
;
char
endpoint
[
80
];
char
endpoint
[
80
];
if
(
!
init_done
)
{
if
(
!
init_done
)
soap_init
(
&
soap
);
init
();
init_done
=
1
;
}
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
...
@@ -125,10 +142,8 @@ pwr_tStatus statussrv_GetExtStatus( const char *nodename, statussrv_sGetExtStatu
...
@@ -125,10 +142,8 @@ pwr_tStatus statussrv_GetExtStatus( const char *nodename, statussrv_sGetExtStatu
pwr_tStatus
sts
=
PWR__SUCCESS
;
pwr_tStatus
sts
=
PWR__SUCCESS
;
char
endpoint
[
80
];
char
endpoint
[
80
];
if
(
!
init_done
)
{
if
(
!
init_done
)
soap_init
(
&
soap
);
init
();
init_done
=
1
;
}
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
...
@@ -398,10 +413,8 @@ pwr_tStatus statussrv_Restart( const char *nodename)
...
@@ -398,10 +413,8 @@ pwr_tStatus statussrv_Restart( const char *nodename)
pwr_tStatus
sts
=
PWR__SUCCESS
;
pwr_tStatus
sts
=
PWR__SUCCESS
;
char
endpoint
[
80
];
char
endpoint
[
80
];
if
(
!
init_done
)
{
if
(
!
init_done
)
soap_init
(
&
soap
);
init
();
init_done
=
1
;
}
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
...
@@ -428,10 +441,8 @@ pwr_tStatus statussrv_XttStart( const char *nodename, const char *opplace, const
...
@@ -428,10 +441,8 @@ pwr_tStatus statussrv_XttStart( const char *nodename, const char *opplace, const
pwr_tStatus
sts
=
PWR__SUCCESS
;
pwr_tStatus
sts
=
PWR__SUCCESS
;
char
endpoint
[
80
];
char
endpoint
[
80
];
if
(
!
init_done
)
{
if
(
!
init_done
)
soap_init
(
&
soap
);
init
();
init_done
=
1
;
}
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
...
@@ -476,10 +487,8 @@ pwr_tStatus statussrv_RtMonStart( const char *nodename, const char *lang, const
...
@@ -476,10 +487,8 @@ pwr_tStatus statussrv_RtMonStart( const char *nodename, const char *lang, const
pwr_tStatus
sts
=
PWR__SUCCESS
;
pwr_tStatus
sts
=
PWR__SUCCESS
;
char
endpoint
[
80
];
char
endpoint
[
80
];
if
(
!
init_done
)
{
if
(
!
init_done
)
soap_init
(
&
soap
);
init
();
init_done
=
1
;
}
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
sprintf
(
endpoint
,
"http://%s:%d"
,
nname
(
nodename
),
port
);
...
...
src/tools/pwre/src/os_cygwin/pwre_configure.sh
View file @
77771ea8
...
@@ -331,7 +331,7 @@ if test $pwre_hw == "hw_arm"; then
...
@@ -331,7 +331,7 @@ if test $pwre_hw == "hw_arm"; then
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
...
@@ -416,7 +416,7 @@ else
...
@@ -416,7 +416,7 @@ else
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
...
...
src/tools/pwre/src/os_freebsd/pwre_configure.sh
View file @
77771ea8
...
@@ -329,7 +329,7 @@ echo "export wb_rtt=\$pwr_exe/wb_rtt" >> $cfile
...
@@ -329,7 +329,7 @@ echo "export wb_rtt=\$pwr_exe/wb_rtt" >> $cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
...
...
src/tools/pwre/src/os_linux/pwre_configure.sh
View file @
77771ea8
...
@@ -389,7 +389,7 @@ if [ $pwre_hw == "hw_arm" ] && [ $ebuild -eq 1 ]; then
...
@@ -389,7 +389,7 @@ if [ $pwre_hw == "hw_arm" ] && [ $ebuild -eq 1 ]; then
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
...
@@ -492,7 +492,7 @@ else
...
@@ -492,7 +492,7 @@ else
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy -lpwr_nodave_dummy -lpwr_epl_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy -lpwr_cifx_dummy -lpwr_nodave_dummy -lpwr_epl_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrprofibus=
\"
-lpwr_pnak_dummy
\"
"
>>
$cfile
...
...
src/tools/pwre/src/os_macos/pwre_configure.sh
View file @
77771ea8
...
@@ -329,7 +329,7 @@ echo "export PKG_CONFIG_PATH=/sw/fink/pkgconfig" >> $cfile
...
@@ -329,7 +329,7 @@ echo "export PKG_CONFIG_PATH=/sw/fink/pkgconfig" >> $cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
...
...
src/tools/pwre/src/os_mingw/pwre_configure.sh
View file @
77771ea8
...
@@ -333,7 +333,7 @@ echo "export PKG_CONFIG_PATH=/sw/fink/pkgconfig" >> $cfile
...
@@ -333,7 +333,7 @@ echo "export PKG_CONFIG_PATH=/sw/fink/pkgconfig" >> $cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
...
...
src/tools/pwre/src/os_openbsd/pwre_configure.sh
View file @
77771ea8
...
@@ -331,7 +331,7 @@ echo "export wb_rtt=\$pwr_exe/wb_rtt" >> $cfile
...
@@ -331,7 +331,7 @@ echo "export wb_rtt=\$pwr_exe/wb_rtt" >> $cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrdtt=
\"
-lpwr_dtt
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
...
...
src/tools/pwre/src/os_templ/pwre_configure.sh
View file @
77771ea8
...
@@ -271,7 +271,7 @@ done
...
@@ -271,7 +271,7 @@ done
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_cc_define=
\"
$conf_cc_define
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrco=
\"
-lpwr_co
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
co -lpwr_statussrv
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrrt=
\"
-lpwr_rt -lpwr_
statussrv -lpwr_co
-lpwr_msg_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrotherio=
\"
-lpwr_usbio_dummy -lpwr_usb_dummy
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxtt=
\"
-lpwr_xtt -lpwr_ge -lpwr_cow -lpwr_flow -lpwr_glow
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxttgtk=
\"
-lpwr_xtt_gtk -lpwr_ge_gtk -lpwr_cow_gtk -lpwr_flow_gtk -lpwr_glow_gtk
\"
"
>>
$cfile
echo
"export pwre_conf_libpwrxttgtk=
\"
-lpwr_xtt_gtk -lpwr_ge_gtk -lpwr_cow_gtk -lpwr_flow_gtk -lpwr_glow_gtk
\"
"
>>
$cfile
...
...
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